home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1996 August / macformat-040.iso / mac / Demos / Secrets of the Luxor® Demo / invitem / 00011.ls < prev    next >
Encoding:
Text File  |  1996-04-26  |  579 b   |  29 lines

  1. on exitFrame
  2.   global campath
  3.   set spnum to 3
  4.   set picb to window "pics"
  5.   tell the stage
  6.     set the fileName of picb to campath & "picbuf"
  7.   end tell
  8.   repeat with i = 10 to 33
  9.     tell picb
  10.       set pich to the castType of cast i
  11.     end tell
  12.     if pich = #empty then
  13.       exit repeat
  14.       next repeat
  15.     end if
  16.     tell picb
  17.       copyToClipBoard(cast i)
  18.     end tell
  19.     set j to i + 132
  20.     pasteClipBoardInto(cast j)
  21.     set the visible of sprite spnum to 1
  22.     updateStage()
  23.     set spnum to spnum + 1
  24.   end repeat
  25.   tell the stage
  26.     forget(picb)
  27.   end tell
  28. end
  29.